home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / ddj9304.zip / WAVELET.ZIP / WAVE_BLD.H < prev    next >
Text File  |  1992-04-26  |  358b  |  15 lines

  1. /* WAVE_BLD.H */
  2.  
  3. void SetupWaveletConstruction(void);
  4. void BuildDSPfilterArray(double alpha, double beta, float *DSPfilters);
  5.  
  6. #ifdef WAVE_BLD
  7. double *PhiData, *PsiData, magnitude;
  8. double pi = 3.14159265358979323846;
  9. int filtlen, offset;
  10. #else
  11. extern double *PhiData, *PsiData, magnitude;
  12. extern double pi;
  13. extern int filtlen, offset;
  14. #endif
  15.